encoding/binary.coder.buf (field)
16 uses
encoding/binary (current package)
binary.go#L255: d := &decoder{order: order, buf: make([]byte, size)}
binary.go#L256: if _, err := io.ReadFull(r, d.buf); err != nil {
binary.go#L386: e := &encoder{order: order, buf: buf}
binary.go#L458: buf []byte
binary.go#L466: x := d.buf[d.offset]
binary.go#L473: e.buf[e.offset] = 1
binary.go#L475: e.buf[e.offset] = 0
binary.go#L481: x := d.buf[d.offset]
binary.go#L487: e.buf[e.offset] = x
binary.go#L492: x := d.order.Uint16(d.buf[d.offset : d.offset+2])
binary.go#L498: e.order.PutUint16(e.buf[e.offset:e.offset+2], x)
binary.go#L503: x := d.order.Uint32(d.buf[d.offset : d.offset+4])
binary.go#L509: e.order.PutUint32(e.buf[e.offset:e.offset+4], x)
binary.go#L514: x := d.order.Uint64(d.buf[d.offset : d.offset+8])
binary.go#L520: e.order.PutUint64(e.buf[e.offset:e.offset+8], x)
binary.go#L690: zero := e.buf[e.offset : e.offset+n]
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)